Get Coordinates Info
GET /coordinates/{lat}/{long}
Description
Retrieve information based on latitude and longitude coordinates.
Path Parameters
| Name | Type | Description |
|---|---|---|
lat | string | The latitude coordinate (path) |
long | string | The longitude coordinate (path) |
Request Headers
| Name | Type | Description |
|---|---|---|
| None | No headers |
Request Body
- Content Type:
application/json
{}
Response Code: 200 - OK
Description
Information retrieved successfully.
Example
{
"data": {
"location": "Los Angeles, CA",
"coordinates": {
"lat": "34.052235",
"long": "-118.243683"
}
}
}
🔑 Authentication bearer
| Param | Value | Type |
|---|---|---|
| token | {{accessCode}} | string |
LANGUAGE
CURL REQUEST
curl --request GET \
--url /coordinates/{lat}/{long} \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!